-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Instant Launch badges (WIP) #596
Instant Launch badges (WIP) #596
Conversation
It's still a little rudimentary but it's not linked from anywhere yet and basically works so I think I'll merge this PR for now, and open more as I get more things done. Any further reviews/thoughts always welcome. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 👍
<> | ||
<ErrorTypography | ||
errorMessage={error.message} | ||
onDetailsClick={() => setErrorDialogOpen(true)} | ||
/> | ||
<DEErrorDialog | ||
open={errorDialogOpen} | ||
errorObject={error} | ||
handleClose={() => setErrorDialogOpen(false)} | ||
/> | ||
</> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks basic enough that this could be replaced with an ErrorTypographyWithDialog
.
See components/apps/savedLaunch/SavedLaunchListing
for an example (I guess AppInfo
wasn't the best example for ErrorTypography
, which seems like it could also use an ErrorTypographyWithDialog
instead).
This (so far) adds a single new page at
/instantlaunches/:id
, which immediately launches the provided instant launch.Continuing work: